projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d3d8cb
)
(term-exec-1): Bind inhibit-eol-conversion to t before
author
Kenichi Handa
<handa@m17n.org>
Thu, 23 Oct 1997 12:03:07 +0000
(12:03 +0000)
committer
Kenichi Handa
<handa@m17n.org>
Thu, 23 Oct 1997 12:03:07 +0000
(12:03 +0000)
calling start-process.
lisp/term.el
patch
|
blob
|
history
diff --git
a/lisp/term.el
b/lisp/term.el
index e3aefb83b9a8fd46796b584b04621708a50f110f..eb453e4dc184de58b0af287360f17c688354fd13 100644
(file)
--- a/
lisp/term.el
+++ b/
lisp/term.el
@@
-1432,7
+1432,10
@@
buffer. The hook term-exec-hook is run after each exec."
(format "LINES=%d" term-height)
(format "COLUMNS=%d" term-width))
process-environment))
- (process-connection-type t))
+ (process-connection-type t)
+ ;; We should suppress conversion of end-of-line format.
+ (inhibit-eol-conversion t)
+ )
(apply 'start-process name buffer
"/bin/sh" "-c"
(format "stty -nl echo rows %d columns %d sane 2>/dev/null;\